home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Floppyshop 2
/
Floppyshop - 2.zip
/
Floppyshop - 2.iso
/
diskmags
/
3565-4.665
/
dmg-4180
/
source.4u
/
riley.ben
/
draw_1.bas
(
.txt
)
< prev
next >
Wrap
Atari STOS Basic
|
1987-04-21
|
956b
|
42 lines
10 REM ---------------
100 REM ----> Set up the system for this draw routine
110 REM
120 KEY
130 AUTO BACK
140 REM
150 REM ----> Set things up i.e. the polymark and ink colour
160 REM
170 SET MARK
180 INK
190 PALETTE
20 REM
200 REM
210 REM ----> Detect draw , just waits for the mousekey to be pressed
220 REM
230 REPEAT
240 VARNAME
250 UNTIL
260 POLYMARK
270 HIDE
280 REM
290 REM ----> The draw routine , simple but effective , and can be improved
30 REM PENCIL DRAW
300 REM
310 REPEAT
320 FOR
330 VARNAME
340 POLYLINE
350 UNTIL
360 REM
370 REM ----> Copy the screen to the BACKground so that it doesn't erase
380 REM
390 SCREEN COPY
40 REM BY BEN OF
400 SHOW
410 GOTO
50 REM FRS
60 REM v1.2
70 REM
80 REM ---------------
90 REM